/* Container for the entire section with the background image */
.L-glassmorphic-section-container {
    width: 100%;
    background-size: cover;
    background-attachment: fixed; /* This is the property that keeps the image fixed */
    background-position: center;
    padding: 50px 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../../img/about\ us\ imgs/oandremoura.jpg');
    
}

/* Wrapper for the image and text to apply glassmorphic style */
.L-glassmorphic-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
}

/* On larger screens, arrange elements side-by-side */
@media (min-width: 768px) {
    .L-glassmorphic-content-wrapper {
        flex-direction: row-reverse;
    }
}

/* Styling for the image */
.L-glassmorphic-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.L-glassmorphic-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}

/* Styling for the text content */
.L-glassmorphic-text-content {
    flex: 1;
    text-align: justify;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.L-glassmorphic-heading {
    text-align: left;
    font-size: 3.5em;
    margin-bottom: 0.5em;
}

.L-glassmorphic-subheading {
    font-size: 1.5em;
    margin-top: 0.5em;
    margin-bottom: 0.25em;
}

.L-glassmorphic-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 0;
}

.L-glassmorphic-list li {
    font-size: 1em;
    margin-bottom: 0.25em;
    position: relative;
    padding-left: 1.5em;
    text-align: left;
}

.L-glassmorphic-list li::before {
    /*content: '⭐'; /* Use an emoji or a character for a custom bullet if wanted */
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

/* Optional: Add a subtle animation on hover */
.L-glassmorphic-content-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}